Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
request-promise-native
Advanced tools
The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.
The request-promise-native npm package is a simplified HTTP request client for Node.js, which supports Promises. It is built on top of the popular 'request' library and provides a more modern and convenient way to handle HTTP requests using native ES6 promises.
Making a GET request
This feature allows you to make a simple GET request to a specified URL and handle the response using promises.
const rp = require('request-promise-native');
rp('https://jsonplaceholder.typicode.com/posts/1')
.then(function (response) {
console.log(JSON.parse(response));
})
.catch(function (err) {
console.error(err);
});
Making a POST request
This feature allows you to make a POST request with a JSON body to a specified URL and handle the response using promises.
const rp = require('request-promise-native');
const options = {
method: 'POST',
uri: 'https://jsonplaceholder.typicode.com/posts',
body: {
title: 'foo',
body: 'bar',
userId: 1
},
json: true
};
rp(options)
.then(function (response) {
console.log(response);
})
.catch(function (err) {
console.error(err);
});
Handling request options
This feature allows you to customize your HTTP request by specifying various options such as headers, query parameters, and response format.
const rp = require('request-promise-native');
const options = {
uri: 'https://jsonplaceholder.typicode.com/posts/1',
headers: {
'User-Agent': 'Request-Promise'
},
json: true
};
rp(options)
.then(function (response) {
console.log(response);
})
.catch(function (err) {
console.error(err);
});
Axios is a promise-based HTTP client for the browser and Node.js. It provides a simple and easy-to-use API for making HTTP requests and supports features like interceptors, automatic JSON transformation, and request cancellation. Compared to request-promise-native, Axios has a more modern API and is actively maintained.
Node-fetch is a lightweight module that brings the Fetch API to Node.js. It is a minimalistic library that provides a simple way to make HTTP requests using promises. Compared to request-promise-native, node-fetch has a smaller footprint and is more aligned with the Fetch API standard used in browsers.
Got is a human-friendly and powerful HTTP request library for Node.js. It supports promises, streams, retries, and many other advanced features. Compared to request-promise-native, Got offers a more feature-rich and flexible API, making it suitable for more complex use cases.
As of Feb 11th 2020, request
is fully deprecated. No new changes are expected to land. In fact, none have landed for some time. This package is also deprecated because it depends on request
.
Fyi, here is the reasoning of request
's deprecation and a list of alternative libraries.
This package is similar to request-promise
but uses native ES6+ promises.
Please refer to the request-promise
documentation. Everything applies to request-promise-native
except the following:
.finally(...)
method was not included until Node v10.This module is installed via npm:
npm install --save request
npm install --save request-promise-native
request
is defined as a peer-dependency and thus has to be installed separately.
request-promise
to request-promise-native
request-promise
v4..finally(...)
anymore.To set up your development environment:
cd
to the main folder,npm install
,npm install gulp -g
if you haven't installed gulp globally yet, andgulp dev
. (Or run node ./node_modules/.bin/gulp dev
if you don't want to install gulp globally.)gulp dev
watches all source files and if you save some changes it will lint the code and execute all tests. The test coverage report can be viewed from ./coverage/lcov-report/index.html
.
If you want to debug a test you should use gulp test-without-coverage
to run all tests without obscuring the code by the test coverage instrumentation.
request-promise-core
which bumps lodash
to ^4.17.19
following this advisory.request-promise-core
which bumps lodash
to ^4.17.15
. See vulnerabilty reports.
(Thanks to @aw-davidson for reporting this in issue #49.)tough-cookie
version, now ^2.3.3
(Thanks to @evocateur for pointing this out.)request-promise-native@1.0.6
please make sure after the upgrade that request
and request-promise-native
use the same physical copy of tough-cookie
.tough-cookie@~2.3.3
to avoid installing tough-cookie@3
which introduces breaking changes
(Thanks to @jasonmit for pull request #33)lodash
to ^4.17.11
, see vulnerabilty reportstough-cookie
to a version without regex DoS vulnerability
(Thanks to @sophieklm for pull request #13)tough-cookie
for cookie creation@request/promise-core
version for safer versioningrequest-promise
v4In case you never heard about the ISC license it is functionally equivalent to the MIT license.
See the LICENSE file for details.
FAQs
The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.
The npm package request-promise-native receives a total of 1,393,481 weekly downloads. As such, request-promise-native popularity was classified as popular.
We found that request-promise-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.